From 8a6ac33012cb23d031fa75253d2d3f1f8c489fc6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jorge=20Israel=20Pe=C3=B1a?= Date: Sun, 19 Oct 2014 14:33:29 -0700 Subject: [PATCH] document rpath option in manifest --- src/doc/manifest.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/doc/manifest.md b/src/doc/manifest.md index 2410bcf32..bb00c389a 100644 --- a/src/doc/manifest.md +++ b/src/doc/manifest.md @@ -108,21 +108,25 @@ along with the defaults for each profile. [profile.dev] opt-level = 0 # Controls the --opt-level the compiler builds with debug = true # Controls whether the compiler passes -g or `--cfg ndebug` +rpath = true # Controls whether the compiler passes `-C rpath` # The release profile, used for `cargo build --release` [profile.release] opt-level = 3 debug = false +rpath = false # The testing profile, used for `cargo test` [profile.test] opt-level = 0 debug = true +rpath = true # The benchmarking profile, used for `cargo bench` [profile.bench] opt-level = 3 debug = false +rpath = false # The documentation profile, used for `cargo doc` [profile.doc] -- 2.30.2